home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Scheduling / Cassandra / Source / EventLog.h < prev    next >
Encoding:
Text File  |  1990-06-10  |  564 b   |  27 lines

  1. //
  2. // EventLog.h
  3. // Copyright (c) 1989, 1990 by Jiro Nakamura 
  4. // All rights reserved
  5. //
  6. // Handles a log window, opens it, lets the user modify it,
  7. //  and if anything changes, lets her or him save it before
  8. // closing it.
  9. //
  10. // RCS Information
  11. // Revision Number->    $Revision: 2.3 $
  12. // Last Revised->        $Date: 90/03/25 01:35:55 $
  13. //
  14.  
  15. #import "TextWindow.h"
  16.  
  17. @interface EventLog:TextWindow
  18. {
  19.     id global;        // Set by IB. Accessor to Global object
  20. }
  21. - open:sender;            // Open window
  22. - close;            // Close window
  23. - update;            // Update window
  24.  
  25. - setGlobal : anObject;
  26. @end
  27.